home *** CD-ROM | disk | FTP | other *** search
- #ifndef GRAPHICS_SPRITE_H
- #define GRAPHICS_SPRITE_H
- /*
- ** $Filename: graphics/sprite.h $
- ** $Release: 1.3 $
- **
- **
- **
- ** (C) Copyright 1985,1986,1987,1988 Commodore-Amiga, Inc.
- ** All Rights Reserved
- */
-
- #define SPRITE_ATTACHED 0x80
-
- struct SimpleSprite
- {
- UWORD *posctldata;
- UWORD height;
- UWORD x,y; /* current position */
- UWORD num;
- };
-
- #endif /* GRAPHICS_SPRITE_H */
-